From: Glenn Morris Date: Fri, 9 Mar 2007 09:00:59 +0000 (+0000) Subject: (PC-do-completion): Replace first call to try-completion with new X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1~1^2~1670 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=87a338a680c377a35209194537bed911c545949d;p=emacs.git (PC-do-completion): Replace first call to try-completion with new PC-try-completion. --- diff --git a/lisp/complete.el b/lisp/complete.el index a5f3eea955d..104f3789403 100644 --- a/lisp/complete.el +++ b/lisp/complete.el @@ -436,7 +436,7 @@ of `minibuffer-completion-table' and the minibuffer contents.") ;; If completion-ignore-case is non-nil, insert the ;; completion string since that may have a different case. (when completion-ignore-case - (setq str (try-completion str table pred)) + (setq str (PC-try-completion str table pred)) (delete-region beg end) (insert str)) 'complete)